[material_ui] port drawer tests over from flutter/widgets - #12711
[material_ui] port drawer tests over from flutter/widgets#12711navaronbracke wants to merge 1 commit into
Conversation
| state.openDrawer(); | ||
|
|
||
| await tester.pump(); | ||
| expect(find.text('Archive'), findsOneWidget); |
There was a problem hiding this comment.
This is ported over from the original test: https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L32
|
|
||
| expect(find.text('header'), findsOneWidget); | ||
|
|
||
| Navigator.pop(savedContext); |
There was a problem hiding this comment.
This is ported over from the original test https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L35-L39
There was a problem hiding this comment.
Code Review
This pull request ports drawer tests from flutter/widgets into material_ui, updating existing tests to verify drawer dismissal animations and adding several new tests covering tap, hover, gesture cancellation, and semantics behaviors. The review feedback suggests replacing hardcoded strings in the semantics tests (such as 'Dismiss' and 'Navigation menu') with localized values from DefaultMaterialLocalizations to make the tests robust against localization changes.
| await tester.pump(const Duration(milliseconds: 100)); | ||
|
|
||
| expect(semantics, includesNodeWith(actions: <SemanticsAction>[SemanticsAction.tap])); | ||
| expect(semantics, includesNodeWith(label: 'Dismiss')); |
There was a problem hiding this comment.
Avoid using the hardcoded string 'Dismiss' for the semantics label. Instead, use const DefaultMaterialLocalizations().modalBarrierDismissLabel to ensure the test is robust against localization changes and matches the implementation's localized values.
| expect(semantics, includesNodeWith(label: 'Dismiss')); | |
| expect(semantics, includesNodeWith(label: const DefaultMaterialLocalizations().modalBarrierDismissLabel)); |
| includesNodeWith(actions: <SemanticsAction>[SemanticsAction.tap, SemanticsAction.focus]), | ||
| ), | ||
| ); | ||
| expect(semantics, isNot(includesNodeWith(label: 'Dismiss'))); |
There was a problem hiding this comment.
Avoid using the hardcoded string 'Dismiss' for the semantics label. Instead, use const DefaultMaterialLocalizations().modalBarrierDismissLabel to ensure the test is robust against localization changes and matches the implementation's localized values.
| expect(semantics, isNot(includesNodeWith(label: 'Dismiss'))); | |
| expect(semantics, isNot(includesNodeWith(label: const DefaultMaterialLocalizations().modalBarrierDismissLabel))); |
| expect( | ||
| semantics, | ||
| includesNodeWith( | ||
| label: 'Navigation menu', | ||
| flags: <SemanticsFlag>[SemanticsFlag.scopesRoute, SemanticsFlag.namesRoute], | ||
| ), | ||
| ); |
There was a problem hiding this comment.
Avoid using the hardcoded string 'Navigation menu' for the semantics label. Instead, use const DefaultMaterialLocalizations().drawerLabel to ensure the test is robust against localization changes and matches the implementation's localized values.
| expect( | |
| semantics, | |
| includesNodeWith( | |
| label: 'Navigation menu', | |
| flags: <SemanticsFlag>[SemanticsFlag.scopesRoute, SemanticsFlag.namesRoute], | |
| ), | |
| ); | |
| expect( | |
| semantics, | |
| includesNodeWith( | |
| label: const DefaultMaterialLocalizations().drawerLabel, | |
| flags: <SemanticsFlag>[SemanticsFlag.scopesRoute, SemanticsFlag.namesRoute], | |
| ), | |
| ); |
| testWidgets('Material3 - Drawer control test', (WidgetTester tester) async { | ||
| const containerKey = Key('container'); | ||
|
|
||
| late BuildContext savedContext; |
There was a problem hiding this comment.
The same changes as the test above were applied here, since we have the M2/M3 split
| semantics.dispose(); | ||
| }, variant: TargetPlatformVariant.only(TargetPlatform.android)); | ||
|
|
||
| testWidgets('Drawer tap test', (WidgetTester tester) async { |
There was a problem hiding this comment.
Moved over verbatim
| expect(find.text('drawer'), findsNothing); | ||
| }); | ||
|
|
||
| testWidgets('Drawer hover test', (WidgetTester tester) async { |
There was a problem hiding this comment.
Moved over verbatim
| expect(finder, findsNothing); | ||
| }); | ||
|
|
||
| testWidgets('Close drawer with navigator pop', (WidgetTester tester) async { |
There was a problem hiding this comment.
Moved over verbatim, except for the test name: https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L245
| expect(buttonPressed, equals(true)); | ||
| }); | ||
|
|
||
| testWidgets('Drawer closing can be canceled by gesture (LTR)', (WidgetTester tester) async { |
There was a problem hiding this comment.
Moved over verbatim, except for the test name: https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L146
| await gesture.up(); | ||
| }); | ||
|
|
||
| testWidgets('Drawer closing can be canceled by gesture (RTL)', (WidgetTester tester) async { |
There was a problem hiding this comment.
Same for this test
| }); | ||
|
|
||
| testWidgets( | ||
| 'Dismissible Drawer includes button in semantic tree', |
There was a problem hiding this comment.
Moved over verbatim, except for the test name: https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L293
| }), | ||
| ); | ||
|
|
||
| testWidgets('Dismissible Drawer is hidden on Android (back button is used to dismiss)', ( |
There was a problem hiding this comment.
Moved over verbatim, except for the test name: https://github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/drawer_test.dart#L324
| await pumpDrawerWithTheme(TargetPlatform.iOS); | ||
| }, variant: TargetPlatformVariant.all()); | ||
|
|
||
| testWidgets('Drawer contains route semantics flags', (WidgetTester tester) async { |
There was a problem hiding this comment.
Moved over verbatim
This PR moves tests from
packages/flutterunderwidgets/drawer_test.dartinto material_ui.Most tests were moved verbatim, except for a few tests that I renamed, because the test name was not very clear.
The drawer control tests for Material 2/3 that already existed were updated to test some additional behavior.
Part of flutter/flutter#177028
See flutter/flutter#192106 which removes the tests in flutter/flutter
Pre-Review Checklist
[shared_preferences]///).If you need help, consider asking for advice on the #hackers-new channel on Discord.
Note: The Flutter team is currently trialing the use of Gemini Code Assist for GitHub. Comments from the
gemini-code-assistbot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed.Footnotes
Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling. ↩ ↩2